home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-SIG: World of Utilities
/
PC-SIG's World of Utilities (PC-SIG) (1994).iso
/
UTI
/
DISK1494.ZIP
/
INSTALLF.BAT
< prev
next >
Wrap
DOS Batch File
|
1989-02-12
|
2KB
|
46 lines
ECHO OFF
CLS
ECHO ****************************************************************************
ECHO * Mi-LOG *
ECHO * Home Computer Record System *
ECHO * v 2.1, Copyright 1986, 1987, MiCord, Box 1344, Midland, MI 48640 *
ECHO * *
ECHO ****************************************************************************
ECHO FLOPPY DISK INSTALLATION PROCEDURE:
ECHO To be self booting a floppy disk must have been formatted with the command
ECHO FORMAT /S before the program files are copied to it. The command FORMAT /S
ECHO copies your version of the system files to the disk.
ECHO CAUTION: If you do not have such a disk prepared then you must
ECHO terminate this program and prepare a suitable TARGET DISK
ECHO Simply press Control Break to terminate this program.
ECHO Then place your DOS DISK in drive A, type FORMAT /S and
ECHO press ENTER. Follow the instructions on your screen.
ECHO Then restart this installation program.
ECHO The installation will then copy some of the program files to the formatted
ECHO disk and prepare a directory for your data files.
ECHO To guide you through the steps, the current disk is called the SOURCE DISK.
ECHO The disk you prepared with the FORMAT /S command is called the TARGET DISK.
ECHO TO CONTINUE...
PAUSE
CLS
ECHO This step copies the necessary files from the SOURCE DISK to the NEW/TARGET
ECHO DISK. If you have a drive B place the NEW/TARGET DISK in drive B elsewise you
ECHO will need to go through the process of trading disks. The computer will tell
ECHO you when to do this. REMEMBER: the SOURCE DISK is the disk for drive A and
ECHO the NEW/TARGET DISK is the disk for drive B.
PAUSE
CLS
COPY A:LOG.EXE B:
CLS
COPY A:AUTOEXEC.BAT B:
CLS
COPY A:READTHIS.BAT B:
CLS
MD B:LOG
CLS
ECHO Your NEW/TARGET DISK is now ready to use. Simply reboot your computer with
ECHO with the NEW/TARGET DISK in drive A. Thank you.
ECHO TO END...
PAUSE
CLS